{% extends "base.html" %} {% block title %}Doctor Details - Admin Panel{% endblock %} {% block content %}

Doctor Registration Details

Review doctor information and documents

Financials Back to Dashboard
Profile Picture
{% if user.profile_picture %} {% else %}

No profile picture uploaded

{% endif %}
Personal Information

{{ user.name }}

{{ user.email }}

{{ user.phone }}

{{ user.cnic }}

{{ user.date_of_birth.strftime('%B %d, %Y') if user.date_of_birth else 'Not provided' }}

{{ user.gender.title() if user.gender else 'Not provided' }}

Professional Information

{{ doctor.category.title() }}

{{ doctor.specialization }}

{{ doctor.experience }} years

{{ doctor.pmc_code }}

{{ doctor.city.title() }}

{{ doctor.created_at.strftime('%B %d, %Y at %I:%M %p') }}

{{ doctor.education }}

{{ doctor.bio }}

{{ doctor.location }}

Documents & Verification
CNIC Documents
{% if documents.cnic_front %} {% else %}

Not provided

{% endif %}
{% if documents.cnic_back %} {% else %}

Not provided

{% endif %}
Live Face Detection
{% if documents.live_photo %} {% else %}

Not provided

{% endif %}
Degree Documents
{% if documents.degrees %}
{% for degree in documents.degrees %} {% endfor %}
{% else %}

No degree documents provided

{% endif %}
{% if doctor.appeal_status == 'pending' and doctor.appeal_count == 0 %}
{% elif doctor.appeal_status == 'pending' and doctor.appeal_count > 0 %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}